This reverts commit
cf7fa931d380c6d205478c87f0f3973f496f9d2a.
We store the baseline in the cache and we do not know if baselines might
be queried in the future. So always store them.
No reftest because I don't know how to write one.
premature optimization == √😈
int *minimum_baseline,
int *natural_baseline)
{
- const gboolean baselines_requested = (minimum_baseline != NULL || natural_baseline != NULL);
SizeRequestCache *cache;
int min_size = 0;
int nat_size = 0;
nat_size = adjusted_natural;
}
- if (baselines_requested && (min_baseline != -1 || nat_baseline != -1))
+ if (min_baseline != -1 || nat_baseline != -1)
{
if (orientation == GTK_ORIENTATION_HORIZONTAL)
{